home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 2: CDPD 1
/
Almathera Ten on Ten - Disc 2: CDPD 1.iso
/
pd
/
351-375
/
359
/
dice
/
dice.lzh
/
lib
/
fd
/
creat.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-04-13
|
174b
|
17 lines
/*
* CREAT.C
*
* creat(name, prot) (prot ignored)
*/
#include <fcntl.h>
int
creat(name)
char *name;
{
return(open(name, O_CREAT | O_TRUNC | O_RDWR, 0666));
}